home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Magazine Collection 2001
/
Delphi Magazine Collection 20001 (2001).iso
/
DISKS
/
Issue62
/
WStrings
/
demomain.pas
< prev
next >
Wrap
Pascal/Delphi Source File
|
2000-08-15
|
382b
|
27 lines
unit DemoMain;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls, WideLabel;
type
TForm1 = class(TForm)
WideLabel1: TWideLabel;
WideLabel2: TWideLabel;
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
{$R *.DFM}
end.